home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SPACE 2
/
SPACE - Library 2 - Volume 1.iso
/
apps
/
41
/
proffsrc
/
lookup.h
< prev
next >
Wrap
C/C++ Source or Header
|
1986-07-17
|
486b
|
24 lines
/*
* from K&R "The C Programming language"
* Table lookup routines
* structure and definitions
*
*/
/* basic table entry */
struct hashlist {
char *name;
char *def;
struct hashlist *next; /* next in chain */
};
/* basic table entry */
struct lexlist {
char *name;
int val; /* lexical value */
int flag; /* optional flag val */
struct lexlist *link; /* next in chain */
};
#define HASHMAX 100 /* size of hashtable */